home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / music_utilities / pt141.dms / pt141.adf / ArexxExamples.lha / EP_MasterVolume-Toggle.rexx < prev    next >
OS/2 REXX Batch file  |  1993-10-20  |  233b  |  16 lines

  1. /* EaglePlayer - toggles MasterVolume */
  2.  
  3. address 'rexx_EP'
  4.  
  5. options results
  6. status G msv
  7.  
  8. if result == "no" then do
  9.     MasterVolume yes
  10.     say "Mastervolume is now on !"
  11. end
  12. else do
  13.     Mastervolume no
  14.     say "MasterVolume is now off !"
  15. end
  16.